Spread WPF Documentation
SavePdf(String,Int32[]) Method
Example 


The file name.
The sheet indexes collection.
Saves the content of the component to the specified PDF file.
Syntax
'Declaration
 
Public Overloads Sub SavePdf( _
   ByVal fileName As System.String, _
   ByVal ParamArray sheetIndexes() As System.Integer _
) 
'Usage
 
Dim instance As GcSpreadSheet
Dim fileName As System.String
Dim sheetIndexes() As System.Integer
 
instance.SavePdf(fileName, sheetIndexes)
public void SavePdf( 
   System.string fileName,
   params System.int[] sheetIndexes
)

Parameters

fileName
The file name.
sheetIndexes
The sheet indexes collection.
Example
This example uses the SavePdf method.
GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings test;
test = new GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings();
test.Title = "Print PDF";
test.Author = "GrapeCity, Inc.";
test.DisplayDocTitle = true;
test.FitWindow = true;
gcSpreadSheet1.SavePDF("c:\\zipfile\\test.pdf", test, 0);
//gcSpreadSheet1.SavePDF("c:\\zipfile\\test.pdf", 0);
Dim test as New GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings
test = new GrapeCity.Windows.SpreadSheet.Data.PdfExportSettings()
test.Title = "Print PDF"
test.Author = "GrapeCity, Inc."
test.DisplayDocTitle = True
test.FitWindow = True
GcSpreadSheet1.SavePDF("c:\zipfile\test.pdf", test, 0)
'GcSpreadSheet1.SavePDF("c:\zipfile\test.pdf", 0)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

GcSpreadSheet Class
GcSpreadSheet Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.